home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / pctchnqs / 1990 / number4 / printscr.c < prev    next >
Text File  |  1990-09-13  |  145b  |  10 lines

  1. #include <dos.h>
  2.  
  3. void print_screen(int turn_on)
  4. {
  5.   if (turn_on)
  6.     pokeb(0x0050, 0x0000, 0);
  7.   else
  8.     pokeb(0x0050, 0x0000, 1);
  9. }
  10.